home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 23 / 023.d81 / t.screen mover < prev    next >
Text File  |  2022-08-26  |  2KB  |  103 lines

  1.  
  2.  
  3.             SCREEN MOVER
  4.                  by
  5.               Ian Adam
  6.  
  7. COMMODORE POWER/PLAY MAGAZINE
  8. April/May,1986
  9. p.110
  10.  
  11.   SCREEN MOVER gives you the ability
  12.  
  13. to save screens of information and
  14.  
  15. then retrieve them at a moment's
  16.  
  17. notice-- without waiting on BASIC to
  18.  
  19. regenerate them.  And because this is
  20.  
  21. a machine-language program, it runs
  22.  
  23. very quickly.
  24.  
  25.  
  26.   Why would you want to switch
  27.  
  28. screens in and out?  Well, for one
  29.  
  30. thing, you could be working on a menu
  31.  
  32. screen and then want to revise
  33.  
  34. another part of the program.  With
  35.  
  36. SCREEN MOVER, you can store the menu
  37.  
  38. screen into memory while you work on
  39.  
  40. the rest of the program, then
  41.  
  42. retrieve the menu screen any time you
  43.  
  44. wish by using the appropriate SYS
  45.  
  46. call.
  47.  
  48.  
  49. A MATTER OF ADDRESSES....
  50.  
  51.   When you run SCREEN MOVER, you will
  52.  
  53. be asked where you wish to store the
  54.  
  55. code.  Adam recommends 828, the start
  56.  
  57. of the cassette buffer, or 49152,
  58.  
  59. which is in the high RAM that goes
  60.  
  61. unused with BASIC.
  62.  
  63.   Once you store the code, the BASIC
  64.  
  65. program can be deleted with NEW.
  66.  
  67. SCREEN MOVER will still be activated.
  68.  
  69.   How would you save a screen using
  70.  
  71. these addresses?  As an example, you
  72.  
  73. could save a screen by typing in SYS
  74.  
  75. 828,4,192.  This transfers the screen
  76.  
  77. from its normal page, 4, to page
  78.  
  79. 192.  To save the color memory next
  80.  
  81. to it, type in SYS 828,216,196.
  82.  
  83.  
  84.   To retrieve the screen, type in SYS
  85.  
  86. 828,192.  SYS 828,196,216 retrieves
  87.  
  88. the color memory.
  89.  
  90.  
  91.   For a more detailed explanation of
  92.  
  93. how SCREEN MOVER works, read Ian
  94.  
  95. Adam's article that is cited above.
  96.  
  97. FILES REQUIRED:
  98.  
  99. SCREEN MOVER
  100.  
  101. ------------<end of text>------------
  102.  
  103.